projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17f8521
)
* fontset.c (reorder_font_vector): Fix min/MIN typo.
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:26:36 +0000
(13:26 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:26:36 +0000
(13:26 -0700)
src/fontset.c
patch
|
blob
|
history
diff --git
a/src/fontset.c
b/src/fontset.c
index 7730f2e4fa922b8d765726af50017d452264fe6a..891a89f8cd04aee07aed529c37964579cede3588 100644
(file)
--- a/
src/fontset.c
+++ b/
src/fontset.c
@@
-419,7
+419,7
@@
reorder_font_vector (Lisp_Object font_group, struct font *font)
tail = XCDR (tail))
if (EQ (encoding, XCAR (tail)))
break;
- else if (score <=
MIN
(INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100)
+ else if (score <=
min
(INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100)
score += 0x100;
}
else